home *** CD-ROM | disk | FTP | other *** search
/ Kellogg's Amérique / Kellogg's Amérique / amazonie_en_danger.swf / scripts / fl / data / SimpleCollectionItem.as < prev   
Text File  |  2020-08-04  |  400b  |  22 lines

  1. package fl.data
  2. {
  3.    public dynamic class SimpleCollectionItem
  4.    {
  5.        
  6.       
  7.       public var label:String;
  8.       
  9.       public var data:String;
  10.       
  11.       public function SimpleCollectionItem()
  12.       {
  13.          super();
  14.       }
  15.       
  16.       public function toString() : String
  17.       {
  18.          return "[SimpleCollectionItem: " + label + "," + data + "]";
  19.       }
  20.    }
  21. }
  22.